home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998…eptember: Technology Seed / September 98 ADC Seed CD.toast / LaserWriter 8.6b5 Seed / Prerelease Docs / sample JPEGConverter / Source / sample LangEnglish.r < prev    next >
Encoding:
Text File  |  1998-08-12  |  1.4 KB  |  62 lines  |  [TEXT/CWIE]

  1. /*
  2. #
  3. #    File Name:        sample LangEnglish.r
  4. #
  5. #    Description:    Resources for the sample JPEG converter than need to be localized.
  6. #
  7. #    Written by:        DMG
  8. #
  9. #    Copyright:        © 1998 by Apple Computer Incorporated. All Rights Reserved.
  10. #
  11. #
  12. #    Change History (most recent first):
  13. #
  14. #    04/03/98    DMG457    For sample JPEG converter
  15. #
  16. #
  17. */
  18.  
  19. #include "SysTypes.r"
  20. #include "Types.r"
  21. #include "sample JPEGConverterLib.h"
  22. #include "Debug.h"
  23. #include "Version.h"
  24.  
  25. //rb824 Put correct verion into string.
  26. resource 'vers' (1, purgeable) {
  27.     kMajorRev,
  28.     kMinorRev,
  29.     kReleaseStage,
  30.     kNonRelease,
  31.     verUS,
  32.     kShortVersStr,
  33.     kShortVersStr 
  34.     ", © 1998 Apple Computer Incorporated. All rights reserved."
  35.     
  36. #if qDebug                // lets see how we built it.
  37.     kqDebug
  38. #endif
  39. #if qNames
  40.     kqNames
  41. #endif
  42. };
  43.  
  44. resource 'STR#' (JPEGCONVERTERSTRINGS_ID, 
  45. #if qNames
  46.     "sample JPEG Plugin Converter Strings", 
  47. #endif
  48.     purgeable) 
  49. {
  50.     {
  51.     /* [1] kJPEGConverterName */
  52.         "sample JPEG Downloader",                // Converter Name.
  53.     /* [2] kJPEGConverterInfoString */
  54.         "This converter module converts JPEG data to DSC conforming PostScript output.",    // Info string for the sample JPEG Converter.
  55.     /* [3] kJPEGNoLevel1Msg */
  56.         // This message is used if Level 1 output is required.
  57.         "Generating Level 1 Compatible PostScript output with the sample JPEG Downloader is not possible.",    
  58.     /* [4] kJPEGBadDataMsg */
  59.         "The image data depth or size cannot be supported by the sample JPEG Downloader."
  60.     }
  61. };
  62.